Package-level declarations
Functions
Link copied to clipboard
fun <T : Any, R> KProperty1<T, R>.joinWithPredicate(joinType: JoinType = JoinType.INNER, predicateBuilder: (From<T, R>, CriteriaBuilder) -> Predicate): PredicateSpecification<T>
Creates a PredicateSpecification that performs a join and applies a Predicate to the joined entity.
Link copied to clipboard
fun <T : Any, R> KProperty1<T, R>.joinWithPredicates(joinType: JoinType = JoinType.INNER, predicateBuilder: (From<T, R>, CriteriaBuilder) -> List<Predicate>): PredicateSpecification<T>
Creates a PredicateSpecification that performs a join and applies a list of Predicates by ANDing them to the joined entity.